home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH39.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-10  |  146 b   |  15 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  int counter = 0;
  5.  while (counter <= 10)
  6.  {
  7.  printf("counter = %d\n", counter);
  8.  counter ++;
  9.  }
  10.  }
  11.  
  12.  
  13.  
  14.  
  15.